home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / java / awt / PointerInfo.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  434 b   |  20 lines

  1. package java.awt;
  2.  
  3. public class PointerInfo {
  4.    private GraphicsDevice device;
  5.    private Point location;
  6.  
  7.    PointerInfo(GraphicsDevice var1, Point var2) {
  8.       this.device = var1;
  9.       this.location = var2;
  10.    }
  11.  
  12.    public GraphicsDevice getDevice() {
  13.       return this.device;
  14.    }
  15.  
  16.    public Point getLocation() {
  17.       return this.location;
  18.    }
  19. }
  20.